home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
Quill
/
Source
/
GridSizeDialog.h
< prev
next >
Wrap
Text File
|
1997-02-03
|
1KB
|
52 lines
/*
* File: GridSizeDialog.h
* Function: A dialog that allows the user to change the view container's grid size.
* Written by: Jesse Jones
*
* Copyright ゥ 1997 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 2/03/97 JDJ Created
*/
#pragma once
#include <ZDialogBox.h>
// ===================================================================================
// class CGridSizeDialog
// ===================================================================================
class CGridSizeDialog : public TDialogBox {
typedef TDialogBox Inherited;
//-----------------------------------
// Initialization/Destruction
//
public:
virtual ~CGridSizeDialog();
static bool Pose(TSize* size);
protected:
CGridSizeDialog();
//-----------------------------------
// TReanimator Support
//
public:
static MReanimatable* Create(MReanimatable* parent);
//-----------------------------------
// Internal API
//
protected:
void SetData(const TSize& size);
TSize GetData() const;
};